home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / bc_pas_1.zip / CDMASTER.H < prev    next >
C/C++ Source or Header  |  1992-07-07  |  660b  |  21 lines

  1. #include "cdrom.h"
  2.  
  3. struct cdtable
  4. {
  5.     struct discinfo di;
  6.     struct trackinfo *ti;
  7. };
  8.  
  9. /* prototypes */
  10. /* cdmaster.c */ struct cdtable *createaudiotoc(int drive);
  11. /* cdmaster.c */ struct cdtable *buildaudiotoc(int drive);
  12. /* cdmaster.c */ destroyaudiotoc(int drive);
  13. /* cdmaster.c */ struct cdtable *getcdtable(int drive);
  14. /* cdmaster.c */ struct discinfo *getdiscinfotable(int drive);
  15. /* cdmaster.c */ struct trackinfo *gettrackinfotable(int drive);
  16. /* cdmaster.c */ long gettrackframes(int drive, int track);
  17. /* cdmaster.c */ playcdtrack(int drive, int track, int offset, int length);
  18. /* cdmaster.c */ seektotrack(int drive, int track);
  19.  
  20.  
  21.